net/netip.uint128.hi (field)
20 uses
	net/netip (current package)
		netip.go#L427: 	hi1, hi2 := ip.addr.hi, ip2.addr.hi
		netip.go#L467: 	return ip.Is6() && ip.addr.hi == 0 && ip.addr.lo>>32 == 0xffff
		netip.go#L550: 		return ip.addr.hi == 0 && ip.addr.lo == 1
		netip.go#L569: 		return ip.addr.hi>>(64-8) == 0xff // ip.v6(0) == 0xff
		netip.go#L703: 	byteorder.BePutUint64(a16[:8], ip.addr.hi)
		netip.go#L733: 		byteorder.BePutUint64(ret[:8], ip.addr.hi)
		netip.go#L1018: 		byteorder.BePutUint64(b[:8], ip.addr.hi)
		uint128.go#L14: 	hi uint64
		uint128.go#L29: func (u uint128) isZero() bool { return u.hi|u.lo == 0 }
		uint128.go#L33: 	return uint128{u.hi & m.hi, u.lo & m.lo}
		uint128.go#L38: 	return uint128{u.hi ^ m.hi, u.lo ^ m.lo}
		uint128.go#L43: 	return uint128{u.hi | m.hi, u.lo | m.lo}
		uint128.go#L48: 	return uint128{^u.hi, ^u.lo}
		uint128.go#L54: 	return uint128{u.hi - borrow, lo}
		uint128.go#L60: 	return uint128{u.hi + carry, lo}
		uint128.go#L68: 	return [2]*uint64{&u.hi, &u.lo}
|  | The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |